home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / a2html / a2html-0.81 / source / makefile.lnx < prev   
Encoding:
Makefile  |  1999-08-28  |  337 b   |  21 lines

  1. # $Id: makefile.lnx,v 1.2 1999/04/20 22:34:33 tommya Exp $
  2. #
  3. # makefile for a2html, NO-COPYRIGHT TOMMY ANDERSEN 1997,98,99
  4. # Compiler: egcs 1.1.2
  5. # GNU make 3.77
  6.  
  7. CC = gcc
  8. CFLAGS    = -O2 -fomit-frame-pointer
  9. LDFLAGS = -s
  10.  
  11. all: a2html
  12.  
  13. OBJS  = a2html.o
  14.  
  15. a2html : $(OBJS)
  16. $(OBJS) : makefile.lnx
  17.  
  18. .PHONY : clean
  19. clean:
  20.     -$(RM) a2html $(OBJS)
  21.